home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hottest 6
/
Hottest 6 (1996)(PDSoft)[!].iso
/
software
/
rendering
/
pov
/
povray40
/
makefile
< prev
next >
Wrap
Makefile
|
1978-11-24
|
1KB
|
53 lines
# Makefile for Persistence of Vision Raytracer
# This file is released to the public domain.
#
#
# MAKE Macros and Such...
#
#***************************************************************
#*
#* Amiga Options
#*
#***************************************************************
# Uncomment for Amiga Lattice C for IEEE w/o coprocessor
#CFLAGS = -cusrft -fi -m0 -b0 -O -v
# Uncomment for Amiga Lattice C with 68040
CFLAGS = UNSCHAR STRMERGE MATH=8 CPU=68040 DATA=FAR NOSTKCHK OPTIMIZE PARM=REGISTER
CC = sc
# Flags for debugging
#CFLAGS = -cusrft -q5w5e -d5
#LIBSIEEE = LIB:scmieee.lib LIB:scnb.lib lib:amiga.lib
LIBS881 = LIB:scm881.lib LIB:scnb.lib lib:amiga.lib
OBJ = o
MACHINE_OBJ = amiga.$(OBJ)
POVOBJS = povray.$(OBJ) render.$(OBJ) tokenize.$(OBJ) parse.$(OBJ) \
objects.$(OBJ) spheres.$(OBJ) quadrics.$(OBJ) lighting.$(OBJ) \
prioq.$(OBJ) texture.$(OBJ) matrices.$(OBJ) csg.$(OBJ) hfield.$(OBJ)\
txtcolor.$(OBJ) txtbump.$(OBJ) txtmap.$(OBJ) txttest.$(OBJ) \
colour.$(OBJ) viewpnt.$(OBJ) ray.$(OBJ) planes.$(OBJ) iff.$(OBJ) \
gif.$(OBJ) gifdecod.$(OBJ) triangle.$(OBJ) raw.$(OBJ) dump.$(OBJ) \
targa.$(OBJ) poly.$(OBJ) bezier.$(OBJ) vect.$(OBJ) \
blob.$(OBJ) boxes.$(OBJ) point.$(OBJ) $(MACHINE_OBJ)
# Amiga Linkage...
#
povray881: $(POVOBJS)
slink <with <
from lib:c.o $(POVOBJS) LIB $(LIBS881) to povray881
<
povrayieee: $(POVOBJS)
slink <with <
from lib:c.o $(POVOBJS) LIB $(LIBSIEEE) to povrayieee
<